home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / drdobbs / 1991 / 02 / nelson / read.me < prev   
Text File  |  1991-01-17  |  3KB  |  72 lines

  1.  
  2. CODER.H  This is the header file needed to use CODER.C.
  3.  
  4. CODER.C  This file contains the routines needed to implement
  5.          an arithemtic coder.  
  6.  
  7. BITIO.H  This is the header file needed to use BITIO.C.
  8.  
  9. BITIO.C  This is the module used to do bit-oriented I/O.
  10.  
  11. BILL.C   This is the driver program that compresses
  12.          then expands the BILL GATES message.
  13.  
  14. COMP-1.C    This is the main module for a fixed-context
  15.             compression program.  It is used to drive MODEL-1
  16.             and MODEL-1A.  It doesn't know about escape codes.
  17.  
  18. EXPAND-1.C  This is the main module for a fixed-context
  19.             decompression program.  It is used with MODEL-1
  20.             and MODEL-1A.  Doesn't know about escape codes,
  21.             order (-1) models, or any of that stuff.
  22.  
  23. MODEL.H     This is the header file that is used when working
  24.             with any of the modeling modules.
  25.  
  26. MODEL-1.C   This is the modeling model for a very siple order-0
  27.             fixed context model.  To be used with COMP-1 or
  28.             EXPAND-1.
  29.  
  30. COMP-2.C    This is the main module for a highest-context
  31.             compression program.  It handles escape codes, and
  32.             does compression ratio checking as well.  It is
  33.             used with MODEL-2 and MODEL-2A.
  34.  
  35. EXPAND-2.C  This is the main module for a highest-context
  36.             decompression program.  It understands all of the
  37.             fancy stuff used in MODEL-2 and MODEL-2A.
  38.  
  39. MODEL-2.C   This is the highly optimized source for a
  40.             variable order compression program.  It is
  41.             used with COMP-2 or EXPAND-2.
  42.  
  43. CHURN.C   A program to test compression software, by churning
  44.           through entire directory trees.  Specific to
  45.           Turbo C, Microsoft C, or TopSpeed C on MS-DOS.
  46.  
  47. CHURNX.C  The same program as CHURN.C, adapted to Xenix
  48.           systems.  Should work with Unix, but don't know
  49.           for sure.
  50.  
  51. LZHUF.C   Haruyasu Yoshizaki's program to perform LZSS encoding
  52.           with adaptive Huffman coding.  This program has
  53.           no copyright printed.  The code is substantially
  54.           similar to the source for LHARC, which is copyrighted,
  55.           but may be freely distributed.
  56.  
  57. COMPRESS.C The Unix compress program.  Not copyrighted or
  58.            supported.
  59.  
  60. MODEL-1A.C This is an order-1 fixed context modeling unit, that
  61.            can be combined with COMP-1 and EXPAND-1.  Used
  62.            to test compression for higher order models that
  63.            don't use escape codes.
  64.  
  65. MODEL-2A.C This is the source for an order-1 highest-order
  66.            modeling program.  It understands escape codes,
  67.            but has a simple data structure that takes up a
  68.            lot of room.  So it is fast, but takes up lots
  69.            of RAM.  Can't be expanded beyond order-1 in a
  70.            PC due to memory limitations.
  71.  
  72.